diff options
Diffstat (limited to 'app/[lng]/partners/signup/page.tsx')
| -rw-r--r-- | app/[lng]/partners/signup/page.tsx | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app/[lng]/partners/signup/page.tsx b/app/[lng]/partners/signup/page.tsx new file mode 100644 index 00000000..26c2944b --- /dev/null +++ b/app/[lng]/partners/signup/page.tsx @@ -0,0 +1,21 @@ +import { Suspense } from "react" +import { Metadata } from "next" +import { JoinForm } from "@/components/signup/join-form" +import { JoinFormSkeleton } from "@/components/signup/join-form-skeleton" + +// (Optional) If Next.js attempts to statically optimize this page and you need full runtime +// behavior for query params, you may also need: +// export const dynamic = "force-dynamic" + +export const metadata: Metadata = { + title: "Partner Portal", + description: "Authentication forms built using the components.", +} + +export default function SignUpPage() { + return ( + <Suspense fallback={<JoinFormSkeleton/>}> + <JoinForm /> + </Suspense> + ) +}
\ No newline at end of file |
